home *** CD-ROM | disk | FTP | other *** search
- ;-------------------------routine begins--------------------------+
- ; ROUTINE FOR STANDARD INPUT WITH NO ECHO
- ;
- stdinne proc far
- mov ah,8 ; standard input
- int 21h ; dos call
- ret
- stdinne endp
- ;-------------------------routine ends---------------------------+